home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.MDIForm MDIForm1
- AutoShowChildren= 0 'False
- BackColor = &H8000000C&
- Caption = "MDIForm1"
- ClientHeight = 3195
- ClientLeft = 165
- ClientTop = 735
- ClientWidth = 4680
- LinkTopic = "MDIForm1"
- StartUpPosition = 3 'Windows Default
- Begin Proyecto1.MayProgress MayProgress1
- Align = 2 'Align Bottom
- Height = 375
- Left = 0
- TabIndex = 0
- Top = 2820
- Width = 4680
- _extentx = 8255
- _extenty = 0
- End
- Begin VB.Menu sdfsdfsdf
- Caption = "A
- adirProgreso"
- End
- Begin VB.Menu asfsdfsdfsdf
- Caption = "QuitarProgreso"
- End
- Attribute VB_Name = "MDIForm1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub asfsdfsdfsdf_Click()
- Dim s As String
- s = InputBox("Progreso:")
- If Not IsNumeric(s) Then Exit Sub
- MayProgress1.TerminarProgreso CLng(s)
- End Sub
- Private Sub sdfsdfsdf_Click()
- Call MayProgress1.MostrarProgreso("", 100)
- End Sub
-